/* Main container styling */
.nict-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
}

/* Card styling */
.nict-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nict-card-header {
    background-color: #5c895c;
    padding: 20px;
    text-align: center;
}

.nict-card-header img {
    margin-bottom: 10px;
}

.nict-card-header h2 {
    color: white;
    font-size: 24px;
    margin: 0;
}

/* Card body styling */
.nict-card-body {
    padding: 20px;
    background-color: #fff;
}

.nict-card-body h4 {
    font-weight: bold;
    color: #5c895c;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Form inputs styling */
.nict-input, 
.nict-select {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
}

.nict-input:focus, 
.nict-select:focus {
    outline: none;
    border-color: #5c895c;
    box-shadow: 0 0 5px #5c895c;
}

/* Textarea styling */
.nict-textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 14px;
    resize: vertical;
}

/* Card footer */
.nict-card-footer {
    padding: 20px;
    background-color: #f8f9fa;
}

.nict-card-footer h5,
.nict-card-footer h6 {
    color: #5c895c;
}
